From 475b779529ed78936835eca02a0c09e95bd0adc0 Mon Sep 17 00:00:00 2001 From: "emellor@ewan" Date: Fri, 23 Sep 2005 15:53:36 +0100 Subject: [PATCH] Fix call with missing parameters. --- tools/python/xen/xend/PrettyPrint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/PrettyPrint.py b/tools/python/xen/xend/PrettyPrint.py index f17074fdfd..b0c0fe3440 100644 --- a/tools/python/xen/xend/PrettyPrint.py +++ b/tools/python/xen/xend/PrettyPrint.py @@ -252,7 +252,7 @@ class PrettyPrinter: self.block = self.block.parent def prettyprint(self, out=sys.stdout): - self.top.prettyprint(Line(out, self.width)) + self.top.prettyprint(Line(out, self.width), self.width) class SXPPrettyPrinter(PrettyPrinter): """An SXP prettyprinter. -- 2.30.2